home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / com / othernet / mausnet / qout023b / diff next >
Encoding:
Text File  |  1994-07-20  |  2.1 KB  |  75 lines

  1. *** orig\config.h    Sat Jul 16 11:05:58 1994
  2. --- config.h    Wed Jul 20 18:40:36 1994
  3. ***************
  4. *** 53,58 ****
  5. --- 53,90 ----
  6.   #undef BOOLEAN
  7.   #define BOOLEAN short
  8.   
  9. + #if defined (linux)
  10. +     #define UML_u '\xfc'
  11. +     #define UML_o '\xf6'
  12. +     #define UML_a '\xe4'
  13. +     #define UML_U '\xdc'
  14. +     #define UML_O '\xd6'
  15. +     #define UML_A '\xc4'
  16. +     #define UML_s '\xdf'
  17. + #else
  18. + #if defined (__TOS__)
  19. +     #define UML_u '\x81'
  20. +     #define UML_o '\x94'
  21. +     #define UML_a '\x84'
  22. +     #define UML_U '\x9a'
  23. +     #define UML_O '\x99'
  24. +     #define UML_A '\x8e'
  25. +     #define UML_s '\x9e'
  26. + #else
  27. + #if defined (__MSDOG__)        /* ohne Gewaehr! */
  28. +     #define UML_u '\x81'
  29. +     #define UML_o '\x94'
  30. +     #define UML_a '\x84'
  31. +     #define UML_U '\x9a'
  32. +     #define UML_O '\x99'
  33. +     #define UML_A '\x8e'
  34. +     #define UML_s '\xe1'
  35. + #else
  36. +     #error "Umlaute muessen noch angepasst werden!"
  37. + #endif
  38. + #endif
  39. + #endif
  40.   /* Dieses Headerfile ist haesslich - aber GNU autoconf lohnt sich fuer 
  41.    * Quarkoutfile nicht.
  42.    */
  43. *** orig\quarkout.c    Sat Jul 16 10:53:48 1994
  44. --- quarkout.c    Wed Jul 20 18:05:18 1994
  45. ***************
  46. *** 408,420 ****
  47.                   switch(*p)
  48.                   {
  49.                   /* ### DANGER: Umlaute bei Portierung wandeln! */
  50. !                 case 'ü': fputs("ue",f); count+=2; break;
  51. !                 case 'ö': fputs("oe",f); count+=2; break;
  52. !                 case 'ä': fputs("ae",f); count+=2; break;
  53. !                 case 'Ü': fputs("Ue",f); count+=2; break;
  54. !                 case 'Ö': fputs("Oe",f); count+=2; break;
  55. !                 case 'Ä': fputs("Ae",f); count+=2; break;
  56. !                 case 'ß': fputs("ss",f); count+=2; break;
  57.                   default: fputc(*p,f); count++; break;
  58.                   }
  59.                   p++;
  60. --- 408,420 ----
  61.                   switch(*p)
  62.                   {
  63.                   /* ### DANGER: Umlaute bei Portierung wandeln! */
  64. !                 case UML_u: fputs("ue",f); count+=2; break;
  65. !                 case UML_o: fputs("oe",f); count+=2; break;
  66. !                 case UML_a: fputs("ae",f); count+=2; break;
  67. !                 case UML_U: fputs("Ue",f); count+=2; break;
  68. !                 case UML_O: fputs("Oe",f); count+=2; break;
  69. !                 case UML_A: fputs("Ae",f); count+=2; break;
  70. !                 case UML_s: fputs("ss",f); count+=2; break;
  71.                   default: fputc(*p,f); count++; break;
  72.                   }
  73.                   p++;
  74.